home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / share / automake-1.6 / am / install.am < prev    next >
Encoding:
Text File  |  2005-10-16  |  2.5 KB  |  72 lines

  1. ## automake - create Makefile.in from Makefile.am
  2. ## Copyright 2001 Free Software Foundation, Inc.
  3.  
  4. ## This program is free software; you can redistribute it and/or modify
  5. ## it under the terms of the GNU General Public License as published by
  6. ## the Free Software Foundation; either version 2, or (at your option)
  7. ## any later version.
  8.  
  9. ## This program is distributed in the hope that it will be useful,
  10. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ## GNU General Public License for more details.
  13.  
  14. ## You should have received a copy of the GNU General Public License
  15. ## along with this program; if not, write to the Free Software
  16. ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  17. ## 02111-1307, USA.
  18.  
  19. ## -------------------------- ##
  20. ## Creating the installdirs.  ##
  21. ## -------------------------- ##
  22. ?SUBDIRS?.PHONY: installdirs installdirs-am installdirs-recursive
  23. ?SUBDIRS?installdirs: installdirs-recursive
  24. ?SUBDIRS?installdirs-am:%installdirs-local%
  25. ?SUBDIRS??_am_installdirs?    $(mkinstalldirs) %_am_installdirs%
  26.  
  27. ?!SUBDIRS?.PHONY: installdirs
  28. ?!SUBDIRS?installdirs:%installdirs-local%
  29. ?!SUBDIRS??_am_installdirs?    $(mkinstalldirs) %_am_installdirs%
  30.  
  31.  
  32. ## ----------------- ##
  33. ## Install targets.  ##
  34. ## ----------------- ##
  35.  
  36. .PHONY: install install-exec install-data uninstall
  37.  
  38. ?SUBDIRS?.PHONY: install-recursive install-exec-recursive install-data-recursive uninstall-recursive
  39. ?SUBDIRS?install: install-recursive
  40. ?SUBDIRS?install-exec: install-exec-recursive
  41. ?SUBDIRS?install-data: install-data-recursive
  42. ?SUBDIRS?uninstall: uninstall-recursive
  43.  
  44. .PHONY: install-exec-am install-data-am uninstall-am
  45. ?!SUBDIRS?install: install-am
  46. ?!SUBDIRS?install-exec: install-exec-am
  47. ?!SUBDIRS?install-data: install-data-am
  48. ?!SUBDIRS?uninstall: uninstall-am
  49.  
  50. .PHONY: install-am
  51. install-am: all-am
  52.     @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
  53.  
  54.  
  55. .PHONY: installcheck
  56. ?SUBDIRS?installcheck: installcheck-recursive
  57. ?!SUBDIRS?installcheck: installcheck-am
  58. ?!SUBDIRS?.PHONY: installcheck-am
  59. ?!SUBDIRS?installcheck-am:
  60.  
  61. ## If you ever modify this, keep in mind that INSTALL_PROGRAM is used
  62. ## in subdirectories, so never set it to a value relative to the top
  63. ## directory.
  64. .PHONY: install-strip
  65. install-strip:
  66. ## Use double quotes here because we might need to interpolate some
  67. ## backquotes at runtime.
  68.     $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
  69.       INSTALL_STRIP_FLAG=-s \
  70.       `test -z '$(STRIP)' || \
  71.         echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
  72.